type github.com/andybalholm/brotli.histogramCommand

41 uses

	github.com/andybalholm/brotli (current package)
		bit_cost.go#L176: func populationCostCommand(histogram *histogramCommand) float64 {
		block_splitter_command.go#L11: func initialEntropyCodesCommand(data []uint16, length uint, stride uint, num_histograms uint, histograms []histogramCommand) {
		block_splitter_command.go#L30: func randomSampleCommand(seed *uint32, data []uint16, length uint, stride uint, sample *histogramCommand) {
		block_splitter_command.go#L41: func refineEntropyCodesCommand(data []uint16, length uint, stride uint, num_histograms uint, histograms []histogramCommand) {
		block_splitter_command.go#L47: 		var sample histogramCommand
		block_splitter_command.go#L57: func findBlocksCommand(data []uint16, length uint, block_switch_bitcost float64, num_histograms uint, histograms []histogramCommand, insert_cost []float64, cost []float64, switch_signal []byte, block_id []byte) uint {
		block_splitter_command.go#L181: func buildBlockHistogramsCommand(data []uint16, length uint, block_ids []byte, num_histograms uint, histograms []histogramCommand) {
		block_splitter_command.go#L197: 	var all_histograms []histogramCommand = make([]histogramCommand, all_histograms_capacity)
		block_splitter_command.go#L202: 	var histograms []histogramCommand = make([]histogramCommand, brotli_min_size_t(num_blocks, histogramsPerBatch))
		block_splitter_command.go#L258: 			var new_array []histogramCommand
		block_splitter_command.go#L262: 			new_array = make([]histogramCommand, _new_size)
		block_splitter_command.go#L314: 			var histo histogramCommand
		block_splitter_command.go#L379: 	var histograms []histogramCommand
		block_splitter_command.go#L397: 	histograms = make([]histogramCommand, num_histograms)
		brotli_bit_stream.go#L1227: func buildAndStoreEntropyCodesCommand(self *blockEncoder, histograms []histogramCommand, histograms_size uint, alphabet_size uint, tree []huffmanTree, storage_ix *uint, storage []byte) {
		brotli_bit_stream.go#L1370: func buildHistograms(input []byte, start_pos uint, mask uint, commands []command, lit_histo *histogramLiteral, cmd_histo *histogramCommand, dist_histo *histogramDistance) {
		brotli_bit_stream.go#L1413: 	var cmd_histo histogramCommand
		brotli_bit_stream.go#L1478: 		var cmd_histo histogramCommand
		cluster_command.go#L11: func compareAndPushToQueueCommand(out []histogramCommand, cluster_size []uint32, idx1 uint32, idx2 uint32, max_num_pairs uint, pairs []histogramPair, num_pairs *uint) {
		cluster_command.go#L47: 		var combo histogramCommand = out[idx1]
		cluster_command.go#L74: func histogramCombineCommand(out []histogramCommand, cluster_size []uint32, symbols []uint32, clusters []uint32, pairs []histogramPair, num_clusters uint, symbols_size uint, max_clusters uint, max_num_pairs uint) uint {
		cluster_command.go#L156: func histogramBitCostDistanceCommand(histogram *histogramCommand, candidate *histogramCommand) float64 {
		cluster_command.go#L160: 		var tmp histogramCommand = *histogram
		histogram.go#L57: type histogramCommand struct {
		histogram.go#L63: func histogramClearCommand(self *histogramCommand) {
		histogram.go#L69: func clearHistogramsCommand(array []histogramCommand, length uint) {
		histogram.go#L76: func histogramAddCommand(self *histogramCommand, val uint) {
		histogram.go#L81: func histogramAddVectorCommand(self *histogramCommand, p []uint16, n uint) {
		histogram.go#L94: func histogramAddHistogramCommand(self *histogramCommand, v *histogramCommand) {
		histogram.go#L183: func buildHistogramsWithContext(cmds []command, literal_split *blockSplit, insert_and_copy_split *blockSplit, dist_split *blockSplit, ringbuffer []byte, start_pos uint, mask uint, prev_byte byte, prev_byte2 byte, context_modes []int, literal_histograms []histogramLiteral, insert_and_copy_histograms []histogramCommand, copy_dist_histograms []histogramDistance) {
		metablock.go#L26: 	command_histograms        []histogramCommand
		metablock.go#L214: 		mb.command_histograms = make([]histogramCommand, (mb.command_histograms_size))
		metablock_command.go#L17: 	histograms_        []histogramCommand
		metablock_command.go#L27: func initBlockSplitterCommand(self *blockSplitterCommand, alphabet_size uint, min_block_size uint, split_threshold float64, num_symbols uint, split *blockSplit, histograms *[]histogramCommand, histograms_size *uint) {
		metablock_command.go#L48: 		*histograms = make([]histogramCommand, (*histograms_size))
		metablock_command.go#L68: 	var histograms []histogramCommand = self.histograms_
		metablock_command.go#L86: 		var combined_histo [2]histogramCommand